home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 22 / AMUG_22-1.ISO / Files / Internet / Web Things / HTML 201.sit / HTML 201 / HTML 201.rsrc / TEXT_138.txt < prev    next >
Encoding:
Text File  |  1996-03-13  |  1.8 KB  |  49 lines

  1.  
  2. Graphics
  3.  
  4. This chapter will cover inserting graphics into your HTML document to be viewed on your web page.First we need to cover some graphic rules:
  5.  
  6. 1.In order for your graphics to be used they need to be uploaded with the HTML documents to the server.
  7.  
  8. 2. Graphics documents are saved in GIF format. Your graphics may have to be converted into this format. When saved in GIF format the title of your document will be followed immediately by .GIF.
  9.  
  10. 3. There are many sources where you can find GIFs plus you can make your own with graphics programs. I will give you some ideas in the tips section.
  11.  
  12. 4. Not everyone has a high speed modem or a flat rate or free internet account. When you place large graphics in your document it takes that much longer to load for your reader. This can mean long waiting times and increased costs. Try and keep this in mind.
  13.  
  14.                 +++++++++++++++++++++++++
  15.  
  16. HTML code for graphics
  17.  
  18. The tag used for inserting a graphic into your HTML document is:
  19.  
  20. <IMG SRC="title.GIF">
  21.  
  22. Title will be the name you have given to your GIF file.
  23.  
  24. ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
  25.  
  26. Alignment options
  27.  
  28. You might want to align any text with the graphic. There are three options:
  29.  
  30. ALIGN=top
  31.  
  32. ALIGN=middle
  33.  
  34. ALIGN=bottom
  35.  
  36. These additions to the tag will align the text to the top, middle and bottom of the graphic, respectively.
  37.  
  38. To use these you would write the following HTML code:
  39.  
  40. <IMG SRC="title.GIF" ALIGN=top>
  41.  
  42.                         ++++++++++++++++++++++++++++++
  43.  
  44. Summary
  45.  
  46. Graphics to be included in a web page usually are in GIF format. Any text that is near the graphic can be aligned to it.
  47.  
  48. Drill 8 will cover these tags.
  49.